home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / option.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  2.4 KB  |  52 lines

  1. /* option.c */
  2. void set_init_1 __ARGS((void));
  3. void set_string_default __ARGS((char *name, char_u *val));
  4. void set_number_default __ARGS((char *name, long val));
  5. void set_init_2 __ARGS((void));
  6. void set_init_3 __ARGS((void));
  7. void init_gui_options __ARGS((void));
  8. void set_title_defaults __ARGS((void));
  9. int do_set __ARGS((char_u *arg, int opt_flags));
  10. void set_options_bin __ARGS((int oldval, int newval, int opt_flags));
  11. int get_viminfo_parameter __ARGS((int type));
  12. char_u *find_viminfo_parameter __ARGS((int type));
  13. void check_options __ARGS((void));
  14. void check_buf_options __ARGS((buf_T *buf));
  15. void free_string_option __ARGS((char_u *p));
  16. void clear_string_option __ARGS((char_u **pp));
  17. void set_term_option_alloced __ARGS((char_u **p));
  18. void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags));
  19. char_u *check_stl_option __ARGS((char_u *s));
  20. int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags));
  21. void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags));
  22. char_u *get_term_code __ARGS((char_u *tname));
  23. char_u *get_highlight_default __ARGS((void));
  24. int makeset __ARGS((FILE *fd, int opt_flags, int local_only));
  25. int makefoldset __ARGS((FILE *fd));
  26. void clear_termoptions __ARGS((void));
  27. void set_term_defaults __ARGS((void));
  28. void comp_col __ARGS((void));
  29. char_u *get_equalprg __ARGS((void));
  30. void win_copy_options __ARGS((win_T *wp_from, win_T *wp_to));
  31. void copy_winopt __ARGS((winopt_T *from, winopt_T *to));
  32. void check_win_options __ARGS((win_T *win));
  33. void check_winopt __ARGS((winopt_T *wop));
  34. void clear_winopt __ARGS((winopt_T *wop));
  35. void buf_copy_options __ARGS((buf_T *buf, int flags));
  36. void reset_modifiable __ARGS((void));
  37. void set_iminsert_global __ARGS((void));
  38. void set_imsearch_global __ARGS((void));
  39. void set_context_in_set_cmd __ARGS((expand_T *xp, char_u *arg, int opt_flags));
  40. int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
  41. int ExpandOldSetting __ARGS((int *num_file, char_u ***file));
  42. int has_format_option __ARGS((int x));
  43. int shortmess __ARGS((int x));
  44. void vimrc_found __ARGS((void));
  45. void change_compatible __ARGS((int on));
  46. int option_was_set __ARGS((char_u *name));
  47. int can_bs __ARGS((int what));
  48. void save_file_ff __ARGS((buf_T *buf));
  49. int file_ff_differs __ARGS((buf_T *buf));
  50. int check_ff_value __ARGS((char_u *p));
  51. /* vim: set ft=c : */
  52.